home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / httrack / httrack-3.20RC4.exe / {app} / src / htstools.c < prev    next >
C/C++ Source or Header  |  2002-07-09  |  19KB  |  758 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       various tools (filename analyzing ..)                  */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #include "htstools.h"
  39.  
  40. /* specific definitions */
  41. #include "htsbase.h"
  42. #include <stdio.h>
  43. #include <stdlib.h>
  44. #include <string.h>
  45. #include <ctype.h>
  46. /* END specific definitions */
  47.  
  48.  
  49. // forme α partir d'un lien et du contexte (origin_fil et origin_adr d'o∙ il est tirΘ) adr et fil
  50. // [adr et fil sont des buffers de 1ko]
  51. // 0 : ok
  52. // -1 : erreur
  53. // -2 : protocole non supportΘ (ftp)
  54. int ident_url_relatif(char *lien,char* origin_adr,char* origin_fil,char* adr,char* fil) {
  55.   int ok=0;
  56.   int scheme=0;
  57.  
  58.   adr[0]='\0'; fil[0]='\0';    //effacer buffers
  59.  
  60.   // lien non vide!
  61.   if (strnotempty(lien)==0) return -1;    // erreur!
  62.  
  63.   // Scheme?
  64.   {
  65.     char* a=lien;
  66.     while (isalpha((unsigned char)*a))
  67.       a++;
  68.     if (*a == ':')
  69.       scheme=1;
  70.   }
  71.  
  72.   // filtrer les parazites (mailto & cie)
  73.   // scheme+authority (//)
  74.   if (
  75.                (strfield(lien,"http://"))        // scheme+//
  76.             || (strfield(lien,"file://"))   // scheme+//
  77.             || (strncmp(lien,"//",2)==0)    // // sans scheme (-> default)
  78.        ) {
  79.     if (ident_url_absolute(lien,adr,fil)==-1) {        
  80.       ok=-1;    // erreur URL
  81.     }
  82.   }
  83.   else if (strfield(lien,"ftp://")) {
  84.     // Note: ftp:foobar.gif is not valid
  85.     if (ftp_available()) {     // ftp supportΘ
  86.       if (ident_url_absolute(lien,adr,fil)==-1) {        
  87.         ok=-1;    // erreur URL
  88.       }
  89.     } else {
  90.       ok=-2;  // non supportΘ
  91.     }
  92. #if HTS_USEOPENSSL
  93.   } else if (strfield(lien,"https://")) {
  94.     // Note: ftp:foobar.gif is not valid
  95.     if (ident_url_absolute(lien,adr,fil)==-1) {        
  96.       ok=-1;    // erreur URL
  97.     }
  98. #endif
  99.   } else if (scheme) {
  100.     ok=-1;      // unknown scheme
  101.   } else {    // c'est un lien relatif
  102.     char* a;
  103.     
  104.     // On forme l'URL complΦte α partie de l'url actuelle
  105.     // et du chemin actuel si besoin est.
  106.     
  107.     // copier adresse
  108.     if (((int) strlen(origin_adr)<HTS_URLMAXSIZE) && ((int) strlen(origin_fil)<HTS_URLMAXSIZE) && ((int) strlen(lien)<HTS_URLMAXSIZE)) {
  109.       strcpy(adr,origin_adr);    // mΩme adresse
  110.  
  111.       /* scheme */
  112.       if (strfield(lien,"http:"))
  113.         lien+=5;
  114.       else if (strfield(lien,"https:"))
  115.         lien+=6;
  116.  
  117.       if (*lien!='/') {  // sinon c'est un lien absolu
  118.         a=strchr(origin_fil,'?');
  119.         if (!a) a=origin_fil+strlen(origin_fil);
  120.         while((*a!='/') && ( a > origin_fil) ) a--;
  121.         if (*a=='/') {    // ok on a un '/'
  122.           if ( (((int) (a - origin_fil))+1+strlen(lien)) < HTS_URLMAXSIZE) {
  123.             // copier chemin
  124.             strncpy(fil,origin_fil,((int) (a - origin_fil))+1);
  125.             *(fil + ((int) (a - origin_fil))+1)='\0';
  126.             
  127.             // copier chemin relatif
  128.             if (((int) strlen(fil)+(int) strlen(lien)) < HTS_URLMAXSIZE) {
  129.               strcat(fil,lien + ((*lien=='/')?1:0) );      
  130.               // simplifier url pour les ../
  131.               fil_simplifie(fil);
  132.             } else
  133.               ok=-1;    // erreur
  134.           } else {    // erreur
  135.             ok=-1;    // erreur URL
  136.           }
  137.         } else {    // erreur
  138.           ok=-1;    // erreur URL
  139.         }
  140.       } else { // chemin absolu
  141.         // copier chemin directement
  142.         strcat(fil,lien);      
  143.       }  // *lien!='/'
  144.     } else
  145.       ok=-1;
  146.     
  147.   }  // test news: etc.
  148.  
  149.   // case insensitive pour adresse
  150.   {
  151.     char *a=jump_identification(adr);
  152.     while(*a) {
  153.       if ((*a>='A') && (*a<='Z'))
  154.         *a+='a'-'A';       
  155.       a++;
  156.     }
  157.   }
  158.   
  159.   return ok;
  160. }
  161.  
  162.  
  163.  
  164.  
  165.  
  166. // crΘer dans s, α partir du chemin courant curr_fil, le lien vers link (absolu)
  167. // un ident_url_relatif a dΘja ΘtΘ fait avant, pour que link ne soit pas un chemin relatif
  168. int lienrelatif(char* s,char* link,char* curr_fil) {
  169.   char _curr[HTS_URLMAXSIZE*2];
  170.   char newcurr_fil[HTS_URLMAXSIZE*2],newlink[HTS_URLMAXSIZE*2];
  171.   char* curr;
  172.   //int n=0;
  173.   char* a;
  174.   int slash=0;
  175.   //
  176.   newcurr_fil[0]='\0'; newlink[0]='\0';
  177.   //
  178.  
  179.   // patch: Θliminer les ? (paramΦtres) sinon bug
  180.   if ( (a=strchr(curr_fil,'?')) ) {
  181.     strncat(newcurr_fil,curr_fil,(int) (a - curr_fil));
  182.     curr_fil = newcurr_fil;
  183.   }
  184.   if ( (a=strchr(link,'?')) ) {
  185.     strncat(newlink,link,(int) (a - link));
  186.     link = newlink;
  187.   }
  188.  
  189.   // recopier uniquement le chemin courant
  190.   curr=_curr;
  191.   strcpy(curr,curr_fil);
  192.   if ((a=strchr(curr,'?'))==NULL)  // couper au ? (params)
  193.     a=curr+strlen(curr)-1;         // pas de params: aller α la fin
  194.   while((*a!='/') && ( a> curr)) a--;       // chercher dernier / du chemin courant
  195.   if (*a=='/') *(a+1)='\0';                           // couper dernier /
  196.   
  197.   // "effacer" s
  198.   s[0]='\0';
  199.   
  200.   // sauter ce qui est commun aux 2 chemins
  201.   {
  202.     char *l,*c;
  203.     if (*link=='/') link++;  // sauter slash
  204.     if (*curr=='/') curr++;
  205.     l=link;
  206.     c=curr;
  207.     // couper ce qui est commun
  208. #if HTS_CASSE
  209.     while ((*link==*curr) && (*link!=0)) {link++; curr++; }
  210. #else
  211.     while ((streql(*link,*curr)) && (*link!=0)) {link++; curr++; }
  212. #endif
  213.     // mais on veut un rΘpertoirer entier!
  214.     // si on a /toto/.. et /toto2/.. on ne veut pas sauter /toto !
  215.     while(((*link!='/') || (*curr!='/')) && ( link > l)) { link--; curr--; }
  216.     //if (*link=='/') link++;
  217.     //if (*curr=='/') curr++;
  218.   }
  219.   
  220.   // calculer la profondeur du rΘpertoire courant et remonter
  221.   // LES ../ ONT ETE SIMPLIFIES
  222.   a=curr;
  223.   if (*a=='/') a++;
  224.   while(*a) if (*(a++)=='/') strcat(s,"../");
  225.   //if (strlen(s)==0) strcat(s,"/");
  226.  
  227.   if (slash) strcat(s,"/");    // garder absolu!!
  228.   
  229.   // on est dans le rΘpertoire de dΘpart, copier
  230.   strcat(s,link + ((*link=='/')?1:0) );
  231.  
  232.   /* Security check */
  233.   if (strlen(s) >= HTS_URLMAXSIZE)
  234.     return -1;
  235.  
  236.   // on a maintenant une chaine de la forme ../../test/truc.html  
  237.   return 0;
  238. }
  239.  
  240. /* Is the link absolute (http://www..) or relative (/bar/foo.html) ? */
  241. int link_has_authority(char* lien) {
  242.   char* a=lien;
  243.   if (isalpha((unsigned char)*a)) {
  244.     // Skip scheme?
  245.     while (isalpha((unsigned char)*a))
  246.       a++;
  247.     if (*a == ':')
  248.       a++;
  249.     else
  250.       return 0;
  251.   }
  252.   if (strncmp(a,"//",2) == 0)
  253.     return 1;
  254.   return 0;
  255. }
  256.  
  257. // conversion chemin de fichier/dossier vers 8-3 ou ISO9660
  258. void long_to_83(int mode,char* n83,char* save) {
  259.   n83[0]='\0';
  260.  
  261.   while(*save) {
  262.     char fn83[256],fnl[256];
  263.     int i=0;
  264.     fn83[0]=fnl[0]='\0';
  265.     while((save[i]) && (save[i]!='/')) { fnl[i]=save[i]; i++; }
  266.     fnl[i]='\0';
  267.     // conversion
  268.     longfile_to_83(mode,fn83,fnl);
  269.     strcat(n83,fn83);
  270.  
  271.     save+=i;
  272.     if (*save=='/') { strcat(n83,"/"); save++; }
  273.   }
  274. }
  275.  
  276.  
  277. // conversion nom de fichier/dossier isolΘ vers 8-3 ou ISO9660
  278. void longfile_to_83(int mode,char* n83,char* save) {
  279.   int i=0,j=0,max=0;
  280.   char nom[256];
  281.   char ext[256];
  282.   nom[0]=ext[0]='\0';
  283.   
  284.   switch(mode) {
  285.   case 1:
  286.     max=8;
  287.     break;
  288.   case 2:
  289.     max=30;
  290.     break;
  291.   default:
  292.     max=8;
  293.     break;
  294.   }
  295.  
  296.   /* No starting . */
  297.   if (save[0] == '.') {
  298.     save[0]='_';
  299.   }
  300.   /* No multiple dots */
  301.   {
  302.     char* last_dot=strrchr(save, '.');
  303.     char* dot;
  304.     while((dot=strchr(save, '.'))) {
  305.       *dot = '_';
  306.     }
  307.     if (last_dot) {
  308.       *last_dot='.';
  309.     }
  310.   }
  311.   /* 
  312.     Avoid: (ISO9660, but also suitable for 8-3)
  313.     (Thanks to jonat@cellcast.com for te hint)
  314.     /:;?\#*~
  315.     0x00-0x1f and 0x80-0xff
  316.   */
  317.   for(i=0 ; i < (int) strlen(save) ; i++) {
  318.     if (
  319.       (strchr("/:;?\\#*~", save[i]))
  320.       ||
  321.       (save[i] < 32)
  322.       ||
  323.       (save[i] >= 127)
  324.       ) {
  325.       save[i]='_';
  326.     }
  327.   }
  328.  
  329.   i=j=0;
  330.   while((i<max) && (save[j]) && (save[j]!='.')) {
  331.     if (save[j]!=' ') {
  332.       nom[i]=save[j]; 
  333.       i++; 
  334.     } 
  335.     j++; 
  336.   }  // recopier nom
  337.   nom[i]='\0';
  338.   if (save[j]) {  // il reste au moins un point
  339.     i=strlen(save)-1;
  340.     while((i>0) && (save[i]!='.') && (save[i]!='/')) i--;    // rechercher dernier .
  341.     if (save[i]=='.') {  // point!
  342.       int j=0;
  343.       i++;
  344.       while((j<3) && (save[i]) ) { if (save[i]!=' ') { ext[j]=save[i]; j++; } i++; }
  345.       ext[j]='\0';
  346.     }
  347.   }
  348.   // corriger vers 8-3
  349.   n83[0]='\0';
  350.   strncat(n83,nom,8);
  351.   if (strnotempty(ext)) {
  352.     strcat(n83,".");
  353.     strncat(n83,ext,3);    
  354.   }
  355. }
  356.  
  357. // Θcrire backblue.gif
  358. int verif_backblue(char* base) {
  359.   int* done;
  360.   int ret=0;
  361.   NOSTATIC_RESERVE(done, int, 1);
  362.   //
  363.   if (!base) {   // init
  364.     *done=0;
  365.     return 0;
  366.   }
  367.   if ( (!*done)
  368.     || (fsize(fconcat(base,"backblue.gif")) != HTS_DATA_BACK_GIF_LEN)) {
  369.     FILE* fp = filecreate(fconcat(base,"backblue.gif"));
  370.     *done=1;
  371.     if (fp) {
  372.       if (fwrite(HTS_DATA_BACK_GIF,HTS_DATA_BACK_GIF_LEN,1,fp) != HTS_DATA_BACK_GIF_LEN)
  373.         ret=1;
  374.       fclose(fp);
  375.       usercommand(0,NULL,fconcat(base,"backblue.gif"));
  376.     } else
  377.       ret=1;
  378.     //
  379.     fp = filecreate(fconcat(base,"fade.gif"));
  380.     if (fp) {
  381.       if (fwrite(HTS_DATA_FADE_GIF,HTS_DATA_FADE_GIF_LEN,1,fp) != HTS_DATA_FADE_GIF_LEN)
  382.         ret=1;
  383.       fclose(fp);
  384.       usercommand(0,NULL,fconcat(base,"fade.gif"));
  385.     } else
  386.       ret=1;
  387.   } 
  388.   return ret;
  389. }
  390.  
  391. // flag
  392. int verif_external(int nb,int test) {
  393.   int* status;
  394.   NOSTATIC_RESERVE(status, int, 2);
  395.   if (!test)
  396.     status[nb]=0;   // reset
  397.   else if (!status[nb]) {
  398.     status[nb]=1;
  399.     return 1;
  400.   }
  401.   return 0;
  402. }
  403.  
  404.  
  405. // recherche chaεne de type truc<espaces>=
  406. // renvoi dΘcalage α effectuer ou 0 si non trouvΘ
  407. /* SECTION OPTIMISEE:
  408. #define rech_tageq(adr,s) ( \
  409.   ( (*(adr-1)=='<') || (is_space(*(adr-1))) ) ? \
  410.     ( (streql(*adr,*s)) ? \
  411.       (__rech_tageq(adr,s)) \
  412.       : 0 \
  413.     ) \
  414.     : 0\
  415.   )
  416. */
  417. /*
  418. HTS_INLINE int rech_tageq(const char* adr,const char* s) { 
  419.   if ( (*(adr-1)=='<') || (is_space(*(adr-1))) ) {   // <tag < tag etc
  420.     if (streql(*adr,*s)) {                           // tester premier octet (optimisation)
  421.       return __rech_tageq(adr,s);
  422.     }
  423.   }
  424.   return 0;
  425. }
  426. */
  427. // DeuxiΦme partie
  428. HTS_INLINE int __rech_tageq(const char* adr,const char* s) { 
  429.   int p;
  430.   p=strfield(adr,s);
  431.   if (p) {
  432.     while(is_space(adr[p])) p++;
  433.     if (adr[p]=='=') {
  434.       return p+1;
  435.     }
  436.   }
  437.   return 0;
  438. }
  439. // same, but check begining of adr wirh s (for <object src="bar.mov" .. hotspot123="foo.html">)
  440. HTS_INLINE int __rech_tageqbegdigits(const char* adr,const char* s) { 
  441.   int p;
  442.   p=strfield(adr,s);
  443.   if (p) {
  444.     while(isdigit((unsigned char)adr[p]))  p++;      // jump digits
  445.     while(is_space(adr[p])) p++;
  446.     if (adr[p]=='=') {
  447.       return p+1;
  448.     }
  449.   }
  450.   return 0;
  451. }
  452.  
  453. // tag sans =
  454. HTS_INLINE int rech_sampletag(const char* adr,const char* s) { 
  455.   int p;
  456.   if ( (*(adr-1)=='<') || (is_space(*(adr-1))) ) {   // <tag < tag etc
  457.     p=strfield(adr,s);
  458.     if (p) {
  459.       if (!isalnum((unsigned char)adr[p])) {  // <srcbis n'est pas <src
  460.         return 1;
  461.       }
  462.       return 0;
  463.     }
  464.   }
  465.   return 0;
  466. }
  467.  
  468. // teste si le tag contenu dans from est Θgal α "tag"
  469. HTS_INLINE int check_tag(char* from,const char* tag) {
  470.   char* a=from+1;
  471.   int i=0;
  472.   char s[256];
  473.   while(is_space(*a)) a++;
  474.   while((isalnum((unsigned char)*a) || (*a=='/')) && (i<250)) { s[i++]=*a; a++; }
  475.   s[i++]='\0';
  476.   return (strfield2(s,tag));  // comparer
  477. }
  478.  
  479. // teste si un fichier dΘpasse le quota
  480. int istoobig(LLint size,LLint maxhtml,LLint maxnhtml,char* type) {
  481.   int ok=1;
  482.   if (size>0) {
  483.     if (is_hypertext_mime(type)) {
  484.       if (maxhtml>0) {
  485.         if (size>maxhtml)
  486.           ok=0;
  487.       }
  488.     } else {
  489.       if (maxnhtml>0) {
  490.         if (size>maxnhtml)
  491.           ok=0;
  492.       }
  493.     }
  494.   }
  495.   return (!ok);
  496. }
  497.  
  498.  
  499. int hts_buildtopindex(char* path,char* binpath) {
  500.   FILE* fpo;
  501.   int retval=0;
  502.   char rpath[1024*2];
  503.   char *toptemplate_header=NULL,*toptemplate_body=NULL,*toptemplate_footer=NULL;
  504.   
  505.   // et templates html
  506.   toptemplate_header=readfile_or(fconcat(binpath,"templates/topindex-header.html"),HTS_INDEX_HEADER);
  507.   toptemplate_body=readfile_or(fconcat(binpath,"templates/topindex-body.html"),HTS_INDEX_BODY);
  508.   toptemplate_footer=readfile_or(fconcat(binpath,"templates/topindex-footer.html"),HTS_INDEX_FOOTER);
  509.   
  510.   if (toptemplate_header && toptemplate_body && toptemplate_footer) {
  511.     
  512.     strcpy(rpath,path);
  513.     if (rpath[0]) {
  514.       if (rpath[strlen(rpath)-1]=='/')
  515.         rpath[strlen(rpath)-1]='\0';
  516.     }
  517.     
  518.     fpo=fopen(fconcat(rpath,"/index.html"),"wb");
  519.     if (fpo) {
  520.       find_handle h;
  521.       verif_backblue(concat(rpath,"/"));    // gΘnΘrer gif
  522.       // Header
  523.       fprintf(fpo,toptemplate_header,
  524.         "<!-- Mirror and index made by HTTrack Website Copier/"HTTRACK_VERSION" "HTTRACK_AFF_AUTHORS" -->"
  525.         );
  526.       
  527.       /* Find valid project names */
  528.       h = hts_findfirst(rpath);
  529.       if (h) {
  530.         struct topindex_chain * chain=NULL;
  531.         struct topindex_chain * startchain=NULL;
  532.         do {
  533.           if (hts_findisdir(h)) {
  534.             char iname[HTS_URLMAXSIZE*2];
  535.             strcpy(iname,rpath);
  536.             strcat(iname,"/");
  537.             strcat(iname,hts_findgetname(h));
  538.             strcat(iname,"/index.html");
  539.             if (fexist(iname)) {
  540.               struct topindex_chain * oldchain=chain;
  541.               chain=calloc(sizeof(struct topindex_chain), 1);
  542.               if (!startchain) {
  543.                 startchain=chain;
  544.               }
  545.               if (chain) {
  546.                 if (oldchain) {
  547.                   oldchain->next=chain;
  548.                 }
  549.                 chain->next=NULL;
  550.                 strcpy(chain->name, hts_findgetname(h));
  551.               }
  552.             }
  553.             
  554.           }
  555.         } while(hts_findnext(h));
  556.         hts_findclose(h);
  557.  
  558.         /* Build sorted index */
  559.         chain=startchain;
  560.         while(chain) {
  561.           char hname[HTS_URLMAXSIZE*2];
  562.           strcpy(hname,chain->name);
  563.           escape_check_url(hname);
  564.           fprintf(fpo,toptemplate_body,
  565.             hname,
  566.             chain->name
  567.             );
  568.  
  569.           chain=chain->next;
  570.         }
  571.  
  572.  
  573.         retval=1;
  574.       }
  575.       
  576.       // Footer
  577.       fprintf(fpo,toptemplate_footer,
  578.         "<!-- Mirror and index made by HTTrack Website Copier/"HTTRACK_VERSION" "HTTRACK_AFF_AUTHORS" -->"
  579.         );
  580.       
  581.       fclose(fpo);
  582.       
  583.     }
  584.     
  585.   }
  586.  
  587.   if (toptemplate_header)
  588.     freet(toptemplate_header);
  589.   if (toptemplate_body)
  590.     freet(toptemplate_body);
  591.   if (toptemplate_footer)
  592.     freet(toptemplate_footer);
  593.   
  594.   return retval;
  595. }
  596.  
  597.  
  598.  
  599.  
  600. // Portable directory find functions
  601. /*
  602. // Example:
  603. find_handle h = hts_findfirst("/tmp");
  604. if (h) {
  605.   do {
  606.     if (hts_findisfile(h))
  607.       printf("File: %s (%d octets)\n",hts_findgetname(h),hts_findgetsize(h));
  608.     else if (hts_findisdir(h))
  609.       printf("Dir: %s\n",hts_findgetname(h));
  610.   } while(hts_findnext(h));
  611.   hts_findclose(h);
  612. }
  613. */
  614. find_handle hts_findfirst(char* path) {
  615.   if (path) {
  616.     if (strnotempty(path)) {
  617.       find_handle_struct* find = (find_handle_struct*) calloc(1,sizeof(find_handle_struct));
  618.       if (find) {
  619.         memset(find, 0, sizeof(find_handle_struct));
  620. #if HTS_WIN
  621.         {
  622.           char rpath[1024*2];
  623.           strcpy(rpath,path);
  624.           if (rpath[0]) {
  625.             if (rpath[strlen(rpath)-1]!='\\')
  626.               strcat(rpath,"\\");
  627.           }
  628.           strcat(rpath,"*.*");
  629.           find->handle = FindFirstFile(rpath,&find->hdata);
  630.           if (find->handle != INVALID_HANDLE_VALUE)
  631.             return find;
  632.         }
  633. #else
  634.         strcpy(find->path,path);
  635.         {
  636.           if (find->path[0]) {
  637.             if (find->path[strlen(find->path)-1]!='/')
  638.               strcat(find->path,"/");
  639.           }
  640.         }
  641.         find->hdir=opendir(path);
  642.         if (find->hdir != NULL) {
  643.           if (hts_findnext(find) == 1)
  644.             return find;
  645.         }
  646. #endif
  647.         free((void*)find);
  648.       }
  649.     }
  650.   }
  651.   return NULL;   
  652. }
  653. int hts_findnext(find_handle find) {
  654.   if (find) {
  655. #if HTS_WIN
  656.     if ( (FindNextFile(find->handle,&find->hdata)))
  657.       return 1;
  658. #else
  659.     memset(&(find->filestat), 0, sizeof(find->filestat));
  660.     if ((find->dirp=readdir(find->hdir)))
  661.       if (find->dirp->d_name)
  662.         if (!stat(concat(find->path,find->dirp->d_name),&find->filestat))
  663.           return 1;
  664. #endif
  665.   }
  666.   return 0;
  667. }
  668. int hts_findclose(find_handle find) {
  669.   if (find) {
  670. #if HTS_WIN
  671.     if (find->handle) {
  672.       FindClose(find->handle);
  673.       find->handle=NULL;
  674.     }
  675. #else
  676.     if (find->hdir) {
  677.       closedir (find->hdir);
  678.       find->hdir=NULL;
  679.     }
  680. #endif
  681.     free((void*)find);
  682.   }
  683.   return 0;
  684. }
  685. char* hts_findgetname(find_handle find) {
  686.   if (find) {
  687. #if HTS_WIN
  688.     return find->hdata.cFileName;
  689. #else
  690.     if (find->dirp)
  691.       return find->dirp->d_name;
  692. #endif
  693.   }
  694.   return NULL;
  695. }
  696. int hts_findgetsize(find_handle find) {
  697.   if (find) {
  698. #if HTS_WIN
  699.     return find->hdata.nFileSizeLow;
  700. #else
  701.     return find->filestat.st_size;
  702. #endif
  703.   }
  704.   return -1;
  705. }
  706. int hts_findisdir(find_handle find) {
  707.   if (find) {
  708.     if (!hts_findissystem(find)) {
  709. #if HTS_WIN
  710.       if (find->hdata.dwFileAttributes  & FILE_ATTRIBUTE_DIRECTORY)
  711.         return 1;
  712. #else
  713.       if (S_ISDIR(find->filestat.st_mode))
  714.         return 1;
  715. #endif
  716.     }
  717.   }
  718.   return 0;
  719. }
  720. int hts_findisfile(find_handle find) {
  721.   if (find) {
  722.     if (!hts_findissystem(find)) {
  723. #if HTS_WIN
  724.       if (!(find->hdata.dwFileAttributes  & FILE_ATTRIBUTE_DIRECTORY))
  725.         return 1;
  726. #else
  727.       if (S_ISREG(find->filestat.st_mode))
  728.         return 1;
  729. #endif
  730.     }
  731.   }
  732.   return 0;
  733. }
  734. int hts_findissystem(find_handle find) {
  735.   if (find) {
  736. #if HTS_WIN
  737.     if (find->hdata.dwFileAttributes  & (FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_TEMPORARY))
  738.       return 1;
  739.     else if ( (!strcmp(find->hdata.cFileName,"..")) || (!strcmp(find->hdata.cFileName,".")) )
  740.       return 1;
  741. #else
  742.     if (
  743.       (S_ISCHR(find->filestat.st_mode))
  744.       || 
  745.       (S_ISBLK(find->filestat.st_mode))
  746.       || 
  747.       (S_ISFIFO(find->filestat.st_mode))
  748.       || 
  749.       (S_ISSOCK(find->filestat.st_mode))
  750.       )
  751.       return 1;
  752.     else if ( (!strcmp(find->dirp->d_name,"..")) || (!strcmp(find->dirp->d_name,".")) )
  753.       return 1;
  754. #endif
  755.   }
  756.   return 0;
  757. }
  758.